home *** CD-ROM | disk | FTP | other *** search
/ The Datafile PD-CD 1 Issue 2 / PDCD-1 - Issue 02.iso / _utilities / utilities / 001 / _basicaof / Examples / !Parallax / Makefile < prev   
Makefile  |  1994-01-03  |  991b  |  38 lines

  1. # Project:   Parallax
  2.  
  3.  
  4. # Toolflags:
  5. CCflags = -c -depend !Depend -throwback -fah -IC:
  6. Linkflags = -o $@
  7. ObjAsmflags = -depend !Depend  -Stamp -quit -CloseExec
  8. CMHGflags = 
  9. LibFileflags = -c -o $@
  10. Squeezeflags = -o $@
  11. AAsmflags = -depend !Depend -quit -CloseExec -To $@ -From
  12.  
  13.  
  14. # Final targets:
  15. @.!RunImage:   @.o.parallax @.o.blitstripe @.o.ShiftPic c:o.stubs 
  16.         link $(linkflags) @.o.parallax @.o.blitstripe @.o.ShiftPic c:o.stubs 
  17.  
  18.  
  19. # User-editable dependencies:
  20. # Whenever dat.Picture is modified, s.ShiftPic will be re-assembled
  21. #
  22. @.o.ShiftPic:   @.dat.Picture
  23.  
  24. # Static dependencies:
  25. @.o.parallax:   @.c.parallax
  26.         cc $(ccflags) -o @.o.parallax @.c.parallax 
  27. @.o.blitstripe:   @.s.blitstripe
  28.         objasm $(objasmflags) -from @.s.blitstripe -to @.o.blitstripe
  29. @.o.ShiftPic:   @.s.ShiftPic
  30.         objasm $(objasmflags) -from @.s.ShiftPic -to @.o.ShiftPic
  31.  
  32.  
  33. # Dynamic dependencies:
  34. o.parallax:    c.parallax
  35. o.parallax:    C:h.kernel
  36. o.parallax:    C:h.swis
  37. o.parallax:    h.parallax
  38.